home *** CD-ROM | disk | FTP | other *** search
/ DS-CD ROM 2 1993 August / DS CD-ROM 2.Ausgabe (August 1993).iso / programm / ds0248 / svga16.h < prev    next >
Text File  |  1991-11-16  |  954b  |  32 lines

  1. /************************************************/
  2. /*                         */
  3. /*        SuperVGA 16 BGI driver defines    */
  4. /*        Copyright (c) 1991        */
  5. /*        Jordan Hargraphix Software        */
  6. /*                        */
  7. /************************************************/
  8.  
  9. #ifndef _DAC16_
  10. #define _DAC16_
  11. typedef unsigned char DacPalette16[16][3];
  12. #endif
  13.  
  14. extern int far Svga16_fdriver[];
  15.  
  16. /* These are the currently supported modes */
  17. #ifndef SVGA320x200x16
  18. #define SVGA320x200x16    0    /* 320x200x16 Standard EGA/VGA */
  19. #define SVGA640x200x16    1    /* 640x200x16 Standard EGA/VGA */
  20. #define SVGA640x350x16    2    /* 640x350x16 Standard EGA/VGA */
  21. #define SVGA640x480x16    3    /* 640x480x16 Standard VGA */
  22. #define SVGA800x600x16    4    /* 800x600x16 SuperVGA/VESA */
  23. #define SVGA1024x768x16    5    /* 1024x768x16 SuperVGA/VESA */
  24. #endif
  25.  
  26. #ifndef XNOR_PUT
  27. #define    XNOR_PUT    5
  28. #define NOR_PUT        6
  29. #define NAND_PUT    7
  30. #define TRANS_COPY_PUT    8    /* Doesn't work with 16-color drivers */
  31. #endif
  32.